home *** CD-ROM | disk | FTP | other *** search
/ MacFormat 1995 January / macformat-020.iso / Shareware City / Developers / SIOD 3.0 / makefile < prev    next >
Encoding:
Makefile  |  1994-10-01  |  557 b   |  18 lines  |  [TEXT/ttxt]

  1. # If cc doesn't work here, try changing cc to gcc (GNU C)
  2. # Note: you can use CC=gcc and CFLAGS= -O -Wall, or CC=g++
  3. # You must modify the makefile with CFLAGS = -DINIT_EXTRA=init_xxx_xxx
  4. # in order to build with optional features.
  5. CC=cc
  6. CFLAGS= -O
  7.  
  8. siod:    siod.o slib.o sliba.o trace.o
  9.     $(CC) -o siod siod.o slib.o sliba.o trace.o
  10. siod.o: siod.c siod.h
  11.     $(CC) $(CFLAGS) -c siod.c
  12. slib.o:    slib.c siod.h siodp.h
  13.     $(CC) $(CFLAGS) -c slib.c
  14. sliba.o:    sliba.c siod.h siodp.h
  15.     $(CC) $(CFLAGS) -c sliba.c
  16. trace.o:    trace.c siod.h siodp.h
  17.     $(CC) $(CFLAGS) -c trace.c
  18.